home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / awk210.arc / DEARC.AWK < prev    next >
Encoding:
Text File  |  1988-12-30  |  123 b   |  11 lines

  1. $1=="-ARCHIVE-" {
  2.     if (file)
  3.         close(file)
  4.     file = $2
  5.     print file
  6.     next
  7. }
  8. {
  9.     print > file
  10. }
  11.